home *** CD-ROM | disk | FTP | other *** search
- ;
- ; MoronCX Installer
- ; tom-01-02-96
- ;
-
- (set installVersion "1.0")
-
- (welcome " Welcome to the MoronCX " installVersion" Installation!")
-
- ; Check Kick
- (if (< (/ (getversion) 65536) 37)
- (
- (abort "Please upgrade your OS version")
- ))
-
- ; Triton
- (set tritonVersion (getversion "libs:triton.library" ))
- (if (< tritonVersion 5)
- (abort "Please install triton.library before installing MoronCX. "
- " A script to install triton is provided with this distribution")
- )
-
- ; Los gehts
-
- (copyfiles
- (prompt "Copying the executable")
- (source "MoronCX")
- (dest "sys:WBStartup")
- (infos)
- )
-
- ; ManDir
-
- (set manDir
- (askdir
- (prompt "Where do you want me to put the dokumentation ?")
- (help "Please select a location where I shall put the"
- "amigaguide.\n"
- "WBStartup is no good idea.")
- (default "sys:")
- )
- )
-
- ; Copy
-
- (copyfiles
- (prompt "Copying the documentation")
- (source "MoronCX.guide")
- (help "Copying th docu")
- (dest manDir)
- (infos)
- )
-
- ; Aus is
-
- (message "Installation complete, please consult the MoronCX manual "
- "should you experience any problems. Mail me for improvents "
- "to MoronCX or the installer script or the documentation at "
- "<t.eicher@amc.cube.net>\n\n"
- "Please consider registering, since it is free.\n")
-
-
-